* Deprecated by the new redirect mechanism in SpecialPage.php
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 11 May 2005 04:07:42 +0000 (04:07 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 11 May 2005 04:07:42 +0000 (04:07 +0000)
includes/SpecialMycontributions.php [deleted file]
includes/SpecialMypage.php [deleted file]
includes/SpecialMytalk.php [deleted file]

diff --git a/includes/SpecialMycontributions.php b/includes/SpecialMycontributions.php
deleted file mode 100644 (file)
index 29262a5..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
- */
-
-/**
- * Redirects a user to hir personal page, used by buildPersonalUrls() in
- * SkinTemplate.php.
- */
-   
-function wfSpecialMycontributions() {
-       global $wgUser, $wgOut;
-       $t = Title::makeTitle( NS_SPECIAL, 'Contributions' );
-       $url = $t->getFullURL( 'target=' . urlencode( $wgUser->getName() ) );
-       $wgOut->redirect( $url );
-}
-?>
diff --git a/includes/SpecialMypage.php b/includes/SpecialMypage.php
deleted file mode 100644 (file)
index f1c6199..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
- */
-
-/**
- * Redirects a user to hir personal page, used by buildPersonalUrls() in
- * SkinTemplate.php.
- */
-function wfSpecialMypage() {
-       global $wgUser, $wgOut;
-       $t = Title::makeTitle( NS_USER, $wgUser->getName() );
-       $wgOut->redirect ($t->getFullURL());
-}
-?>
diff --git a/includes/SpecialMytalk.php b/includes/SpecialMytalk.php
deleted file mode 100644 (file)
index 428d6c3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
- */
-
-/**
- * Redirects a user to hir talk page, used by buildPersonalUrls() in
- * SkinTemplate.php.
- */
-function wfSpecialMytalk() {
-       global $wgUser, $wgOut;
-       $t = Title::makeTitle( NS_USER_TALK, $wgUser->getName() );
-       $wgOut->redirect ($t->getFullURL());
-}
-?>